home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / QEAPI.H < prev    next >
Text File  |  1993-06-10  |  1KB  |  49 lines

  1. /*************************************************
  2. * FILE NAME: qeapi.h   TITLE: QELIB API functions
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. **************************************************
  8. * SYNOPSIS: 
  9. *     Function prototypes for use with Q+E Lib
  10. *        database DLLs
  11. **************************************************/
  12.  
  13. #ifndef __QEAPI_H
  14. #define __QEAPI_H
  15.  
  16. #define __QE
  17.  
  18. #ifndef __WINDOWS_H  /* prevent multiple includes */
  19. #include <windows.h>
  20. #endif
  21.  
  22. #ifndef __QEDEFS_H
  23. #include "QEdefs.h"
  24. #endif
  25.  
  26.  
  27. /*        define QELIB funcs as PASCAL style calls */
  28.                         
  29. POINTER FAR PASCAL qeColName( int, int );
  30. int FAR PASCAL qeColScale( int, int );
  31. int FAR PASCAL qeColType( int, int );
  32. long FAR PASCAL qeColWidth( int, int );
  33. int FAR PASCAL qeConnect( POINTER );
  34.  
  35. LONG FAR PASCAL qeDBErr();
  36. int FAR PASCAL qeDisconnect( int );
  37.  
  38. int FAR PASCAL qeEndSQL( int );
  39. int FAR PASCAL qeErr(void);
  40. int FAR PASCAL qeExecSQL( int, POINTER );
  41.  
  42.  
  43. int FAR PASCAL qeNumCols( int );
  44.  
  45.  
  46. #endif
  47.  
  48.  
  49.